.container{
    max-width: 1230px;
    margin: 0 auto;
}
.calculator-block{
    padding: 20px 0;
}
.calculator-block input[type="text"], .calculator-block input[type="number"]{
    border: none;
    background: inherit;
    outline: none;
    box-shadow: none;
    border-bottom: 1px solid #9e9e9e;
    border-radius: 0;
}
.calculator-block .calculator-block-title{
    position: relative;
    margin: 100px 0;
    width: 100%;
    text-align: center;
}
.calculator-block .calculator-block-title:after{
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    width: 100px;
    background: #ffb923;
}
.calculator-block .calculator-block-title h2{
    margin-bottom: 0;
}
.calculator-block .calculator-block-title span{
    color: #333;
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: initial;
}
.calculator-block .calculator-form-block__steps{
    padding-bottom: 10px;
    font-weight: 500;
    font-size: 17px;
    color: #333;
}
.calculator-block .calculator-form-block__title{
    color: #333;
    font-size: 25px;
    font-weight: 700;
}
.calculator-block .calculator-form-block-three-images label,
.calculator-block .left-radio label{
    width: 100%;
}
.calculator-block .calculator-form-block-three-images label img{
    width: 100%;
    height: 240px;
    object-fit: cover;
}
.calculator-block .calculator-form-block-three-images__text-title label,
.calculator-block .left-radio label{
    position: relative;
    margin-top: 10px;
    padding: 10px;
    border-top: 1px solid #757575;
    border-bottom: 1px solid #757575;
    font-size: 15px;
    font-weight: 700;
    color: #757575;
    text-align: center;
}
.calculator-block .calculator-form-block-three-images__text-title label:before,
.calculator-block .left-radio label:before{
    content: '';
    position: absolute;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    border: 2px solid #757575;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
}
.calculator-block .calculator-form-block-three-images__text-title input,
.calculator-block .left-radio input{
    display: none;
}
.calculator-block .calculator-form-block-three-images__text-title input:checked+label,
.calculator-block .left-radio input:checked+label{
    color: #ffc107;
    border-color: #ffc107;
}
.calculator-block .calculator-form-block-three-images__text-title input:checked+label:before,
.calculator-block .left-radio input:checked+label:before{
    border-color: #ffc107;
    background-image: url("../img/check.png");
    background-size: 16px;
    background-position-x: center;
    background-position-y: 4px;
    background-repeat: no-repeat;
}
.calculator-block .col-lg-6 img{
    height: 300px;
    width: 100%;
    object-fit: cover;
}
.calculator-block .left-radio label{
    display: block;
    width: auto;
    text-align: left;
    border: none;
    padding-left: 30px;
}
.calculator-block .left-radio label:before{
    left: 0;
}
.calculator-block input[type='checkbox']{
    display: none;
}
.calculator-block input[type='checkbox']+label{
    display: block;
    position: relative;
    padding-left: 30px;
}
.calculator-block input[type='checkbox']+label:before{
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid #9e9e9e;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.calculator-block input[type='checkbox']:checked+label:before{
    background-color: #ffc107;
    border-color: #ffc107;
    background-image: url("../img/check-white.png");
    background-size: 16px;
    background-position-x: center;
    background-position-y: 4px;
    background-repeat: no-repeat;
}
.calculator-block .slide-buttons{
    display: flex;
    padding-top: 15px;
    width: 100%;
    justify-content: center;
}
.calculator-block .slide-buttons button{
    margin: 0 10px;
    font-size: 17px;
    font-weight: 600;
}
.calculator-block .have-border{
    padding: 15px;
    margin: 25px 0;
    border: 2px solid #ddd;
    border-right: none;
}
.calculator-block img.full-height{
    height: 100%;
}